PROGRAM DESCRIPTION
===================
Oh no! People are stuck in the upper levels of an attacked office building! Don't panic, T-man is here to help! He's ready to clear the path before the panicking citizens! Fly, drill holes, clear or bash torn electric wires, divert or make a back for citizens to lead them outside! Act fast! Stats will be waiting for you!
It's an experimental arcade game with no end.

STARTING VIA EMULATOR
=====================
Recommended emulator: YAPEhttp://yape.homeserver.hu/
How to start the game:
1. File / Attach disk image...
2. Select and open the .d64 image
3. Enter command: DLOAD"*" and press Enter
4. If you wish to LIST the program, see PROGRAM LINES OVERVIEW down below.
5. Enter command: RUN and press Enter


GAME INSTRUCTIONS
=================
Starting the game, you can see several levels of the building. Panicking people descend from the top (you can see their arms up while running), and you (T-man with the red cape) must make sure they reach the bottom level and leave the building at either side unharmed. That is, avoiding the rising number of torn electric wires (W)! If people leave the building or die, more torn wires appear; sometimes re-generating already cleared blocks!

Use the cursor keys to navigate T-man. You can fly in the four directions, making any obstacles vanishing in the way. This way you can dig holes to make people descend from upper levels, bashing wires in the way, or "simply" fixing those wires flying just above them, so they turn back to normal concrete. If you cease flying, normal gravity applies. (You don't fall through concrete by simply descending to it.) You can't leave the building or bash any sides of it.

You can try to divert people standing in their way! If you stand still, they turn over. If you fly towards them, they avoid you! If they fall upon you, they step over! Use you dexterity, and don't panic!

At the bottom, stats will appear (eventually). Try to keep the survivors count high, the death count low!

Life-saver tip: People always start running to the right!


VARIABLES
=========
	A$		pressed key
	B		=PEEK(P+L), char below player
const	B$		background line
const	C		sound pitch (700)
	D		hostage direction (-1/1)
	F		=PEEK(R+L), char down to hostage
const	H		hole char (160)
	I,J		loop vars
	K		kills count (0-)
const	K$		"DIED" string
const	L		line (40)
	M		movement delta
const	M$		man chars
const	N$		no man chars
	N		survivors count (0-)
	P		player position POKE address
	R		hostage position POKE address
const	R$		hostage chars
const	S$		"SURVIVED" string
	S		hostage body X coord.
	T		hostage body Y coord.
	U		player delta X
	V		player delta Y
const	W		wires char (151)
	X		player body X coord., initial building height (19)
	Y		player body Y coord.


PROGRAM LINES OVERVIEW
======================
Use the LIST command to view the program lines. You can use the LIST from-to syntax to list certain intervals, eg. LIST 4-6.

lines	purpose
-----	-------
0-2	init
3	hostage init
4-6	player loop
7-9	hostage loop
